home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
NeXT Education Software Sampler 1992 Fall
/
NeXT Education Software Sampler 1992 Fall.iso
/
SoundAndMusic
/
cmix
/
lpc
/
analysis
/
Makefile
< prev
Wrap
Makefile
|
1991-12-17
|
412b
|
29 lines
CFLAGS = -O
PROGS = lpc
INCLUDE = -I/../../H/sfheader.h
CC = cc $(INCLUDE)
LDFLAGS = -lm
CMIX_SYS = ../../sys
all: lpc
clean:
rm -f *.o
LPC_O = lpc.o lpc.anallpc.o\
$(CMIX_SYS)/printsf.o\
$(CMIX_SYS)/sfcodes.o alpole.o
LPC_O = lpc.o lpc.anallpc.o ../../sys/wheader.o\
$(CMIX_SYS)/printsf.o\
$(CMIX_SYS)/sfcodes.o alpole.o
.c:
$(CC) -c *.c
lpc: $(LPC_O)
cc -o lpc $(LPC_O) $(LDFLAGS)